home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DIBLK.PAK / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  42 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #ifndef __AFXEXT_H__
  14. #include <afxext.h>         // for access to CToolBar and CStatusBar
  15. #endif
  16.  
  17. class CMainFrame : public CMDIFrameWnd
  18. {
  19.     DECLARE_DYNAMIC(CMainFrame)
  20. public:
  21.     CMainFrame();
  22.  
  23. // Implementation
  24. public:
  25.     virtual ~CMainFrame();
  26.  
  27. protected:  // control bar embedded members
  28.     CStatusBar  m_wndStatusBar;
  29.     CToolBar    m_wndToolBar;
  30.  
  31. // Generated message map functions
  32. protected:
  33.     //{{AFX_MSG(CMainFrame)
  34.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  35.     afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  36.     afx_msg BOOL OnQueryNewPalette();
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.